home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / samba.idb / usr / samba / src / source / nmbd_lmhosts.c.z / nmbd_lmhosts.c
Encoding:
C/C++ Source or Header  |  1998-10-28  |  3.2 KB  |  102 lines

  1. /*
  2.    Unix SMB/Netbios implementation.
  3.    Version 1.9.
  4.    NBT netbios routines and daemon - version 2
  5.    Copyright (C) Jeremy Allison 1994-1998
  6.  
  7.    This program is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation; either version 2 of the License, or
  10.    (at your option) any later version.
  11.  
  12.    This program is distributed in the hope that it will be useful,
  13.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.    GNU General Public License for more details.
  16.  
  17.    You should have received a copy of the GNU General Public License
  18.    along with this program; if not, write to the Free Software
  19.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  
  21.    Revision History:
  22.  
  23.    Handle lmhosts file reading.
  24.  
  25. */
  26.  
  27. #include "includes.h"
  28.  
  29. extern int DEBUGLEVEL;
  30.  
  31. /****************************************************************************
  32. Load a lmhosts file.
  33. ****************************************************************************/
  34. void load_lmhosts_file(char *fname)
  35. {  
  36.   pstring name;
  37.   int name_type;
  38.   struct in_addr ipaddr;
  39.   FILE *fp = startlmhosts( fname );
  40.  
  41.   if (!fp) {
  42.     DEBUG(2,("load_lmhosts_file: Can't open lmhosts file %s. Error was %s\n",
  43.              fname, strerror(errno)));
  44.     return;
  45.   }
  46.    
  47.   while (getlmhostsent(fp, name, &name_type, &ipaddr) )
  48.   {
  49.     struct subnet_record *subrec = NULL;
  50.     enum name_source source = LMHOSTS_NAME;
  51.  
  52.     /* We find a relevent subnet to put this entry on, then add it. */
  53.     /* Go through all the broadcast subnets and see if the mask matches. */
  54.     for (subrec = FIRST_SUBNET; subrec ; subrec = NEXT_SUBNET_EXCLUDING_UNICAST(subrec))
  55.     {
  56.       if(same_net(ipaddr, subrec->bcast_ip, subrec->mask_ip))
  57.         break;
  58.     }
  59.   
  60.     /* If none match add the name to the remote_broadcast_subnet. */
  61.     if(subrec == NULL)
  62.       subrec = remote_broadcast_subnet;
  63.  
  64.     if(name_type == -1)
  65.     {
  66.       /* Add the (0) and (0x20) names directly into the namelist for this subnet. */
  67.       add_name_to_subnet(subrec,name,0x00,(uint16)NB_ACTIVE,PERMANENT_TTL,source,1,&ipaddr);
  68.       add_name_to_subnet(subrec,name,0x20,(uint16)NB_ACTIVE,PERMANENT_TTL,source,1,&ipaddr);
  69.     }
  70.     else
  71.     {
  72.       /* Add the given name type to the subnet namelist. */
  73.       add_name_to_subnet(subrec,name,name_type,(uint16)NB_ACTIVE,PERMANENT_TTL,source,1,&ipaddr);
  74.     }
  75.   }
  76.    
  77.   endlmhosts(fp);
  78. }
  79.  
  80. /****************************************************************************
  81.   Find a name read from the lmhosts file. We secretly check the names on
  82.   the remote_broadcast_subnet as if the name was added to a regular broadcast
  83.   subnet it will be found by normal name query processing.
  84. ****************************************************************************/
  85.  
  86. BOOL find_name_in_lmhosts(struct nmb_name *nmbname, struct name_record **namerecp)
  87. {
  88.   struct name_record *namerec;
  89.  
  90.   *namerecp = NULL;
  91.  
  92.   if((namerec = find_name_on_subnet(remote_broadcast_subnet, nmbname, 
  93.                                  FIND_ANY_NAME))==NULL)
  94.     return False;
  95.  
  96.   if(!NAME_IS_ACTIVE(namerec) || (namerec->source != LMHOSTS_NAME))
  97.     return False;
  98.  
  99.   *namerecp = namerec;
  100.   return True;
  101. }
  102.